Component org.nuxeo.runtime.management.ServerLocatorContrib
In bundle org.nuxeo.runtime
Resolution Order
13
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.runtime.management.ServerLocatorContrib">
<!-- nuxeo beans are published by default in the platform mbean server,
uncomment one of the following configuration if you want to use
another place-->
<!-- use jboss mbean server as default -->
<extension target="org.nuxeo.runtime.management.ServerLocator"
point="locators">
<locator domain="jboss" default="true" />
</extension>
<!-- use a dedicated mbean server bound
server URL can be found in the server log at line "Started a mbean server : ..."
<extension target="org.nuxeo.runtime.management.ServerLocator"
point="locators">
<locator domain="org.nuxeo" exist="false" rmiPort="2100"/>
</extension> -->
</component>